home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 126-150 / disk_129 / patch / ver2.0 / makefile < prev    next >
Makefile  |  1992-05-06  |  2KB  |  81 lines

  1. # $Header: Makefile.SH,v 2.0 86/09/17 15:36:15 lwall Exp $
  2. #
  3. # $Log:    Makefile.SH,v $
  4. # Revision 2.0  86/09/17  15:36:15  lwall
  5. # Baseline for netwide release.
  6. # Revision 1.2  86/09/08  14:07:42  lwall
  7. # Split up patch.c.
  8. # Revision 1.1  86/08/01  20:18:35  lwall
  9. # Initial revision
  10.  
  11. CC = cc
  12. bin = /usr/local/bin
  13. mansrc = /usr/man/mann
  14. manext = n
  15. CFLAGS =-b -r
  16. LDFLAGS = 
  17.  
  18.  
  19. public = patch
  20. private = 
  21. manpages = patch.man
  22. util = Makefile
  23.  
  24. c = patch.c pch.c inp.c version.c util.c request.c filereq.c newwildcmp.c \
  25.  dfindOne.c
  26.  
  27. obj = patch.o pch.o inp.o util.o version.o request.o filereq.o newwildcmp.o \
  28.  dfindOne.o
  29.  
  30. lintflags = -phbvxac
  31.  
  32. addedbyconf = Makefile.old bsd config.h config.sh eunice loc pdp11 usg v7
  33.  
  34. # grrr
  35. SHELL = /bin/sh
  36.  
  37. #.c.o:
  38. #    $(CC) -c $(CFLAGS) $*.c
  39.  
  40. #all: $(public) $(private) $(util)
  41. #    touch all
  42.  
  43. patch: $(obj)
  44.     $(CC) $(LDFLAGS) $(obj) $(libs) -o patch
  45.  
  46. # won't work with csh
  47. #install: patch
  48. #    export PATH || exit 1
  49. #    - mv $(bin)/patch $(bin)/patch.old
  50. #    - if test `pwd` != $(bin); then cp $(public) $(bin); fi
  51. #    cd $(bin); chmod 755 $(public)
  52. #    - if test `pwd` != $(mansrc); then \
  53. #for page in $(manpages); do \
  54. #cp $$page $(mansrc)/`basename $$page .man`.$(manext); \
  55. #done; \
  56. #fi
  57.  
  58. clean:
  59.     rm -f *.o *.orig core
  60.  
  61. realclean:
  62.     rm -f patch *.o *.orig core $(addedbyconf)
  63.  
  64. # The following lint has practically everything turned on.  Unfortunately,
  65. # you have to wade through a lot of mumbo jumbo that can't be suppressed.
  66. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
  67. # for that spot.
  68.  
  69. lint:
  70.     lint $(lintflags) $(defs) $(c) > patch.fuzz
  71.  
  72. patch.o: config.h common.h patch.c inp.h pch.h util.h version.h
  73. pch.o: config.h common.h pch.c pch.h util.h
  74. inp.o: config.h common.h inp.c inp.h util.h
  75. util.o: config.h common.h util.c util.h
  76. version.o: config.h common.h version.c version.h patchlevel.h util.h
  77.  
  78.